From: Keir Fraser Date: Thu, 27 Nov 2008 11:22:38 +0000 (+0000) Subject: VT-d code cleanup X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14040^2~21 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=48253116860591178c2aecadaf73086bff01a4ab;p=xen.git VT-d code cleanup - remove a printk line. This printk may be output too many on some platforms, thus result in hang during dom0 booting. - add write buffer flush in domain_context_unmap_one() - when map/unmap context, if context is not flushed, needn't to flush iotlb Signed-off-by: Weidong Han --- diff --git a/xen/drivers/passthrough/vtd/iommu.c b/xen/drivers/passthrough/vtd/iommu.c index 80bab920b5..ba0ec4d205 100644 --- a/xen/drivers/passthrough/vtd/iommu.c +++ b/xen/drivers/passthrough/vtd/iommu.c @@ -446,10 +446,6 @@ static int flush_iotlb_reg(void *_iommu, u16 did, if ( DMA_TLB_IAIG(val) == 0 ) dprintk(XENLOG_ERR VTDPREFIX, "IOMMU: flush IOTLB failed\n"); - if ( DMA_TLB_IAIG(val) != DMA_TLB_IIRG(type) ) - dprintk(XENLOG_INFO VTDPREFIX, - "IOMMU: tlb flush request %x, actual %x\n", - (u32)DMA_TLB_IIRG(type), (u32)DMA_TLB_IAIG(val)); /* flush iotlb entry will implicitly flush write buffer */ return 0; } @@ -1127,10 +1123,11 @@ static int domain_context_mapping_one( unmap_vtd_domain_page(context_entries); /* Context entry was previously non-present (with domid 0). */ - iommu_flush_context_device(iommu, 0, (((u16)bus) << 8) | devfn, - DMA_CCMD_MASK_NOBIT, 1); - if ( iommu_flush_iotlb_dsi(iommu, 0, 1) ) + if ( iommu_flush_context_device(iommu, 0, (((u16)bus) << 8) | devfn, + DMA_CCMD_MASK_NOBIT, 1) ) iommu_flush_write_buffer(iommu); + else + iommu_flush_iotlb_dsi(iommu, 0, 1); set_bit(iommu->index, &hd->iommu_bitmap); spin_unlock_irqrestore(&iommu->lock, flags); @@ -1310,8 +1307,12 @@ static int domain_context_unmap_one( context_clear_present(*context); context_clear_entry(*context); iommu_flush_cache_entry(context); - iommu_flush_context_domain(iommu, domain_iommu_domid(domain), 0); - iommu_flush_iotlb_dsi(iommu, domain_iommu_domid(domain), 0); + + if ( iommu_flush_context_domain(iommu, domain_iommu_domid(domain), 0) ) + iommu_flush_write_buffer(iommu); + else + iommu_flush_iotlb_dsi(iommu, domain_iommu_domid(domain), 0); + unmap_vtd_domain_page(context_entries); spin_unlock_irqrestore(&iommu->lock, flags);